home *** CD-ROM | disk | FTP | other *** search
Lisp/Scheme | 1988-04-07 | 505 b | 20 lines | [TEXT/ttxt] |
- ;; Larry Mulcahy 1988
- ;; apl
-
- (provide 'apl)
-
- ; (iota n) = (0 1 2 ... n-1)
-
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
- ; iota
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-
- (defun iota (n) (reverse (iota-helper (1- n))))
-
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
- ; iota-helper
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-
- (defun iota-helper (n) (if (>= n 0) (cons n (iota-helper (1- n)))))
-
-